home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-09-11 | 579 b | 30 lines | [TEXT/CWIE] |
- // SimpleAnalysis.h
- // Copyright: © 1994 - 1996 by Apple Computer, Inc., all rights reserved.
-
- #pragma once
- #ifndef SimpleAnalysis_h
- #define SimpleAnalysis_h
-
- #pragma import on
-
- #include "IAAnalysis.h"
-
- #pragma IA_BEGIN_EXPORTS
-
- const uint32 SimpleAnalysisType = 'Sim1';
-
- class SimpleAnalysis : public IAAnalysis {
- public:
- SimpleAnalysis() : IAAnalysis(SimpleAnalysisType) {}
- // SimpleAnalysis(SimpleAnalysis& sa) : IAAnalysis(sa) {}
-
- IATokenStream* MakeTokenStream(IADocText* text);
- IATerm* GetProtoTerm();
- };
-
- #pragma IA_END_EXPORTS
-
- #pragma import reset
-
- #endif
-